home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 005 / note11.arc / NOTE.DOC < prev    next >
Encoding:
Text File  |  1987-01-06  |  1.5 KB  |  58 lines

  1. Notebook program V1.1 - 1/6/87
  2. Tom Pfau - Digital Equipment Corporation, Parsippany, NJ
  3.  
  4. This program appends the text of the command line to a notebook file
  5. specified by the NOTEBOOK environment variable.
  6.  
  7. To use, do the following:
  8.  
  9.     E>SET NOTEBOOK=E:\TEXT\NOTEBOOK.DAT
  10.  
  11. Then, to add to the notebook, type:
  12.  
  13.     E>NOTE This text will be appended to the file
  14.  
  15. You may optionally timestamp a message or have the program prompt for the
  16. text to be appended.
  17.  
  18. Command format:
  19.     NOTE [-s] [-p] [text]
  20.         -s    Record time of entry
  21.         -p    Prompt for text
  22.  
  23. If -p isn't specified and no text appears on the command line, Note will
  24. display help information.
  25.  
  26. In prompt mode, multiple lines of text can be entered for a single note.
  27. The note will be delimited by start and end note markers.  If text
  28. appears after -p, that text will be written after the start note marker.
  29.  
  30. Examples:
  31.  
  32. If you type:  NOTE add this text
  33. Notebook contains: add this text
  34.  
  35. If you type:  NOTE -s add this text
  36. Notebook contains: 01-06-87 20:09:55 | add this text
  37.  
  38. If you type:  NOTE -s -p foobar
  39.           Note> line 1
  40.           Note> line 2
  41.           Note> ^Z
  42. Notebook contains: -- start note -- 01-06-87 20:11:15 | foobar
  43.            line 1
  44.            line 2
  45.            -- end note --
  46.  
  47. Comments:
  48.  
  49. Note was written for MS-Pascal.  It requires the include file FINK
  50. (distributed with MS-Pascal and included in the archive).  To build:
  51.  
  52.     PAS NOTE;
  53.     PAS2
  54.     LINK NOTE,,NUL,DOS2PAS;
  55.  
  56. The DOS2PAS library is necessary if a directory is specified in the
  57. NOTEBOOK environment variable.
  58.